home *** CD-ROM | disk | FTP | other *** search
/ Delphi Magazine Collection 2001 / Delphi Magazine Collection 20001 (2001).iso / DISKS / Issue45 / Clinic / Client2.dpr < prev    next >
Encoding:
Text File  |  2000-11-02  |  271 b   |  16 lines

  1. program Client2;
  2.  
  3. uses
  4.   Forms,
  5.   ClientForm2U in 'ClientForm2U.pas' {Form1},
  6.   Server_Stub2 in 'Server_Stub2.pas',
  7.   NoDUNBox in 'NoDUNBox.pas';
  8.  
  9. {$R *.RES}
  10.  
  11. begin
  12.   Application.Initialize;
  13.   Application.CreateForm(TForm1, Form1);
  14.   Application.Run;
  15. end.
  16.